-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R3SOL-0 Remove hibernate dependency from ledger persistence lib #6368
R3SOL-0 Remove hibernate dependency from ledger persistence lib #6368
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR title failed to match regex -> ^((CORDA|EG|ENT|INFRA|CORE|DOC|ES|DA5|DI|R3SOL)-\d+)(.*)
override fun findSignedTransactionIdsAndStatuses( | ||
transactionIds: List<String> | ||
): Map<SecureHash, String> { | ||
return entityManagerFactory.transaction { em -> | ||
repository.findSignedTransactionIdsAndStatuses(em, transactionIds) | ||
entityManagerFactory.createEntityManager().use { em -> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you have to remove the transaction here?
Jenkins build for PR 6368 build 26 Build Successful: |
ff03825
to
9260f63
Compare
…fDoesNotExist` case. NOTE: includes a lot of println lines for debugging, will be removed once verified.
|
Removes Hibernate dependency from the ledger-persistence lib.